翻訳と辞書
Words near each other
・ Hewa people
・ Hewad TV
・ Heureux Anniversaire
・ Heurich Brewery
・ Heurich Mausoleum
・ Heuriger
・ Heuringhem
・ Heurist
・ Heuristic
・ Heuristic (computer science)
・ Heuristic (disambiguation)
・ Heuristic (engineering)
・ Heuristic analysis
・ Heuristic argument
・ Heuristic evaluation
Heuristic function
・ Heuristic Park
・ Heuristic routing
・ Heuristic Squelch
・ Heuristic-systematic model of information processing
・ HeuristicLab
・ Heuristics and sports
・ Heuristics in judgment and decision-making
・ Heurne
・ Heurt Fort
・ Heurteauville
・ Heurtevent
・ Heus manufacturing company, inc.
・ Heusch
・ Heuschrecke 10


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Heuristic function : ウィキペディア英語版
Heuristic function

A heuristic function, or simply a heuristic, is a function that ranks alternatives in search algorithms at each branching step based on available information to decide which branch to follow.
== Shortest paths ==

For example, for shortest path problems, a ''heuristic'' is a function, h(n) defined on the nodes of a search tree, which serves as an estimate of the cost of the cheapest path from that node to the goal node. Heuristics are used by informed search algorithms such as Greedy best-first search and A
*
to choose the best node to explore. Greedy best-first search will choose the node that has the lowest value for the heuristic function. A
* search will expand nodes that have the lowest value for g(n)+h(n) , where g(n) is the (exact) cost of the path from the initial state to the current node. If h(n) is ''admissible'', i.e., if h(n) never overestimates the costs of reaching the goal, then A
* will always find an optimal solution.
The classical problem involving heuristics is the n-puzzle. Commonly used heuristics for this problem include counting the number of misplaced tiles and finding the sum of the Manhattan distances between each block and its position in the goal configuration. Note that both are admissible.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Heuristic function」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.